projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b4391a5
)
(Variable Definitions, Customization Types):
author
Richard M. Stallman
<rms@gnu.org>
Wed, 3 Jan 2007 22:17:28 +0000
(22:17 +0000)
committer
Richard M. Stallman
<rms@gnu.org>
Wed, 3 Jan 2007 22:17:28 +0000
(22:17 +0000)
Don't use * in doc string for defcustom.
lispref/customize.texi
patch
|
blob
|
history
diff --git
a/lispref/customize.texi
b/lispref/customize.texi
index ee188c76c7924f7270acb7716108147cd26e34db..621124acb97898a9cc7b6384af4c815ce3fd497b 100644
(file)
--- a/
lispref/customize.texi
+++ b/
lispref/customize.texi
@@
-409,7
+409,7
@@
Keywords}. Here is an example, from the library @file{saveplace.el}:
@example
(defcustom save-place nil
- "
*
Non-nil means automatically save place in each file..."
+ "Non-nil means automatically save place in each file..."
:type 'boolean
:require 'saveplace
:group 'save-place)
@@
-461,7
+461,7
@@
example:
@example
(defcustom diff-command "diff"
- "
*
The command to use to run diff."
+ "The command to use to run diff."
:type '(string)
:group 'diff)
@end example